static method
Java: A method that is resolved by the compiler at compile time (rather than at runtime using dynamic binding.). This is in contrast to the default of dynamic (or virtual in C++). A static method is also a class method because only class methods can be resolved at compile time in Java. But static does not imply that something is a class method in all languages.
Assert.assertEquals(message, expected, actual);Inline code sample
Copyright © 2003-2008 Gerard Meszaros all rights reserved